home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 January - Disc 2
/
Macworld (1999-01) (Disk 2).dmg
/
Serious Demos
/
Symbolic Composer 4.2
/
Environment
/
Projects
/
Examples
/
More Examples
/
Using grooves in def-section
< prev
next >
Wrap
Text File
|
1998-10-26
|
665b
|
36 lines
; grooves in def-section
(def-orchestra 'orchestra
all-instruments (synth)
)
; Grooves are written the same way as lengths. There can be a one
; pattern for the whole section, or own groove pattern for each
; zone. All instruments can have own grooves. If no groove is
; defined, no grooving takes place.
(def-section sect-a
default
zone '(1/1 1/1 1/1 1/1)
tonality (activate-tonality (major c 4))
length '(1/8)
velocity '(64)
synth
symbol '(a b c)
duration '(1/4)
groove '(1/32 1/16t)
)
(def-channel
synth 1
)
(def-tempo 120)
(midiport :printer)
(play-file-p "Grooving"
all-instruments '(sect-a)
)